home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / shared.dir / 07579_Digital Video(new).ls < prev    next >
Encoding:
Text File  |  1996-04-18  |  9.5 KB  |  477 lines

  1. on DVInit
  2.   global gSISystem, gSIVideo
  3.   set vRetVal to 0
  4.   if gSISystem = "MAC" then
  5.     if gSIVideo = "QT" then
  6.       set vRetVal to MAC_QT_Init()
  7.     end if
  8.   else
  9.     if gSISystem = "WIN" then
  10.       if gSIVideo = "QT" then
  11.         set vRetVal to WIN_QT_Init()
  12.       else
  13.         if gSIVideo = "VFW" then
  14.           set vRetVal to WIN_VFW_Init()
  15.         else
  16.           if gSIVideo = "MPEG" then
  17.             set vRetVal to WIN_MPEG_Init()
  18.           end if
  19.         end if
  20.       end if
  21.     end if
  22.   end if
  23.   return vRetVal
  24. end
  25.  
  26. on DVDone
  27.   global gSISystem, gSIVideo
  28.   if gSISystem = "MAC" then
  29.     if gSIVideo = "QT" then
  30.       MAC_QT_Done()
  31.     end if
  32.   else
  33.     if gSISystem = "WIN" then
  34.       if gSIVideo = "QT" then
  35.         WIN_QT_Done()
  36.       else
  37.         if gSIVideo = "VFW" then
  38.           WIN_VFW_Done()
  39.         else
  40.           if gSIVideo = "MPEG" then
  41.             WIN_MPEG_Done()
  42.           end if
  43.         end if
  44.       end if
  45.     end if
  46.   end if
  47. end
  48.  
  49. on DVUse aFName, aPal
  50.   global gSISystem, gSIVideo
  51.   if voidp(aPal) then
  52.     set aPal to EMPTY
  53.   end if
  54.   if gSISystem = "MAC" then
  55.     if gSIVideo = "QT" then
  56.       MAC_QT_Use(aFName)
  57.     end if
  58.   else
  59.     if gSISystem = "WIN" then
  60.       if gSIVideo = "QT" then
  61.         WIN_QT_Use(aFName, aPal)
  62.       else
  63.         if gSIVideo = "VFW" then
  64.           WIN_VFW_Use(aFName, aPal)
  65.         else
  66.           if gSIVideo = "MPEG" then
  67.             WIN_MPEG_Use(aFName)
  68.           end if
  69.         end if
  70.       end if
  71.     end if
  72.   end if
  73. end
  74.  
  75. on DVPlay aFrom, aTo
  76.   global gSISystem, gSIVideo
  77.   if gSISystem = "MAC" then
  78.     if gSIVideo = "QT" then
  79.       MAC_QT_Play(aFrom, aTo)
  80.     end if
  81.   else
  82.     if gSISystem = "WIN" then
  83.       if gSIVideo = "QT" then
  84.         WIN_QT_Play(aFrom, aTo)
  85.       else
  86.         if gSIVideo = "VFW" then
  87.           WIN_VFW_Play(aFrom, aTo)
  88.         else
  89.           if gSIVideo = "MPEG" then
  90.             WIN_MPEG_Play(aFrom, aTo)
  91.           end if
  92.         end if
  93.       end if
  94.     end if
  95.   end if
  96. end
  97.  
  98. on DVPause
  99.   global gSISystem, gSIVideo
  100.   if gSISystem = "MAC" then
  101.     if gSIVideo = "QT" then
  102.       MAC_QT_Pause()
  103.     end if
  104.   else
  105.     if gSISystem = "WIN" then
  106.       if gSIVideo = "QT" then
  107.         WIN_QT_Pause()
  108.       else
  109.         if gSIVideo = "VFW" then
  110.           WIN_VFW_Pause()
  111.         else
  112.           if gSIVideo = "MPEG" then
  113.             WIN_MPEG_Pause()
  114.           end if
  115.         end if
  116.       end if
  117.     end if
  118.   end if
  119. end
  120.  
  121. on DVPauseP
  122.   global gSISystem, gSIVideo
  123.   set vRetVal to 0
  124.   if gSISystem = "MAC" then
  125.     if gSIVideo = "QT" then
  126.       set vRetVal to MAC_QT_PauseP()
  127.     end if
  128.   else
  129.     if gSISystem = "WIN" then
  130.       if gSIVideo = "QT" then
  131.         set vRetVal to WIN_QT_PauseP()
  132.       else
  133.         if gSIVideo = "VFW" then
  134.           set vRetVal to WIN_VFW_PauseP()
  135.         else
  136.           if gSIVideo = "MPEG" then
  137.             set vRetVal to WIN_MPEG_PauseP()
  138.           end if
  139.         end if
  140.       end if
  141.     end if
  142.   end if
  143.   return vRetVal
  144. end
  145.  
  146. on DVStop
  147.   global gSISystem, gSIVideo
  148.   if gSISystem = "MAC" then
  149.     if gSIVideo = "QT" then
  150.       MAC_QT_Stop()
  151.     end if
  152.   else
  153.     if gSISystem = "WIN" then
  154.       if gSIVideo = "QT" then
  155.         WIN_QT_Stop()
  156.       else
  157.         if gSIVideo = "VFW" then
  158.           WIN_VFW_Stop()
  159.         else
  160.           if gSIVideo = "MPEG" then
  161.             WIN_MPEG_Stop()
  162.           end if
  163.         end if
  164.       end if
  165.     end if
  166.   end if
  167. end
  168.  
  169. on DVStopP
  170.   global gSISystem, gSIVideo
  171.   set vRetVal to 0
  172.   if gSISystem = "MAC" then
  173.     if gSIVideo = "QT" then
  174.       set vRetVal to MAC_QT_StopP()
  175.     end if
  176.   else
  177.     if gSISystem = "WIN" then
  178.       if gSIVideo = "QT" then
  179.         set vRetVal to WIN_QT_StopP()
  180.       else
  181.         if gSIVideo = "VFW" then
  182.           set vRetVal to WIN_VFW_StopP()
  183.         else
  184.           if gSIVideo = "MPEG" then
  185.             set vRetVal to WIN_MPEG_StopP()
  186.           end if
  187.         end if
  188.       end if
  189.     end if
  190.   end if
  191.   return vRetVal
  192. end
  193.  
  194. on DVResume
  195.   global gSISystem, gSIVideo
  196.   if gSISystem = "MAC" then
  197.     if gSIVideo = "QT" then
  198.       MAC_QT_Resume()
  199.     end if
  200.   else
  201.     if gSISystem = "WIN" then
  202.       if gSIVideo = "QT" then
  203.         WIN_QT_Resume()
  204.       else
  205.         if gSIVideo = "VFW" then
  206.           WIN_VFW_Resume()
  207.         else
  208.           if gSIVideo = "MPEG" then
  209.             WIN_MPEG_Resume()
  210.           end if
  211.         end if
  212.       end if
  213.     end if
  214.   end if
  215. end
  216.  
  217. on DVSetPos aPos
  218.   global gSISystem, gSIVideo
  219.   if gSISystem = "MAC" then
  220.     if gSIVideo = "QT" then
  221.       MAC_QT_SetPos(aPos)
  222.     end if
  223.   else
  224.     if gSISystem = "WIN" then
  225.       if gSIVideo = "QT" then
  226.         WIN_QT_SetPos(aPos)
  227.       else
  228.         if gSIVideo = "VFW" then
  229.           WIN_VFW_SetPos(aPos)
  230.         else
  231.           if gSIVideo = "MPEG" then
  232.             WIN_MPEG_SetPos(aPos)
  233.           end if
  234.         end if
  235.       end if
  236.     end if
  237.   end if
  238. end
  239.  
  240. on DVGetPos
  241.   global gSISystem, gSIVideo
  242.   set vRetVal to 0
  243.   if gSISystem = "MAC" then
  244.     if gSIVideo = "QT" then
  245.       set vRetVal to MAC_QT_GetPos()
  246.     end if
  247.   else
  248.     if gSISystem = "WIN" then
  249.       if gSIVideo = "QT" then
  250.         set vRetVal to WIN_QT_GetPos()
  251.       else
  252.         if gSIVideo = "VFW" then
  253.           set vRetVal to WIN_VFW_GetPos()
  254.         else
  255.           if gSIVideo = "MPEG" then
  256.             set vRetVal to WIN_MPEG_GetPos()
  257.           end if
  258.         end if
  259.       end if
  260.     end if
  261.   end if
  262.   return vRetVal
  263. end
  264.  
  265. on DVPlayP
  266.   global gSISystem, gSIVideo
  267.   set vRetVal to 0
  268.   if gSISystem = "MAC" then
  269.     if gSIVideo = "QT" then
  270.       set vRetVal to MAC_QT_PlayP()
  271.     end if
  272.   else
  273.     if gSISystem = "WIN" then
  274.       if gSIVideo = "QT" then
  275.         set vRetVal to WIN_QT_PlayP()
  276.       else
  277.         if gSIVideo = "VFW" then
  278.           set vRetVal to WIN_VFW_PlayP()
  279.         else
  280.           if gSIVideo = "MPEG" then
  281.             set vRetVal to WIN_MPEG_PlayP()
  282.           end if
  283.         end if
  284.       end if
  285.     end if
  286.   end if
  287.   return vRetVal
  288. end
  289.  
  290. on DVSetPlayArea aX, aY, aW, aH
  291.   global gSISystem, gSIVideo
  292.   if gSISystem = "MAC" then
  293.     if gSIVideo = "QT" then
  294.       MAC_QT_SetPlayArea(aX, aY, aW, aH)
  295.     end if
  296.   else
  297.     if gSISystem = "WIN" then
  298.       if gSIVideo = "QT" then
  299.         WIN_QT_SetPlayArea(aX, aY, aW, aH)
  300.       else
  301.         if gSIVideo = "VFW" then
  302.           WIN_VFW_SetPlayArea(aX, aY, aW, aH)
  303.         else
  304.           if gSIVideo = "MPEG" then
  305.             WIN_MPEG_SetPlayArea(aX, aY, aW, aH)
  306.           end if
  307.         end if
  308.       end if
  309.     end if
  310.   end if
  311. end
  312.  
  313. on DVFullScreen aFlag
  314.   global gSISystem, gSIVideo
  315.   if gSISystem = "MAC" then
  316.     if gSIVideo = "QT" then
  317.       MAC_QT_FullScreen(aFlag)
  318.     end if
  319.   else
  320.     if gSISystem = "WIN" then
  321.       if gSIVideo = "QT" then
  322.         WIN_QT_FullScreen(aFlag)
  323.       else
  324.         if gSIVideo = "VFW" then
  325.           WIN_VFW_FullScreen(aFlag)
  326.         else
  327.           if gSIVideo = "MPEG" then
  328.             WIN_MPEG_FullScreen(aFlag)
  329.           end if
  330.         end if
  331.       end if
  332.     end if
  333.   end if
  334. end
  335.  
  336. on DVFullScreenP
  337.   global gSISystem, gSIVideo
  338.   set vRetVal to 0
  339.   if gSISystem = "MAC" then
  340.     if gSIVideo = "QT" then
  341.       set vRetVal to MAC_QT_FullScreenP()
  342.     end if
  343.   else
  344.     if gSISystem = "WIN" then
  345.       if gSIVideo = "QT" then
  346.         set vRetVal to WIN_QT_FullScreenP()
  347.       else
  348.         if gSIVideo = "VFW" then
  349.           set vRetVal to WIN_VFW_FullScreenP()
  350.         else
  351.           if gSIVideo = "MPEG" then
  352.             set vRetVal to WIN_MPEG_FullScreenP()
  353.           end if
  354.         end if
  355.       end if
  356.     end if
  357.   end if
  358.   return vRetVal
  359. end
  360.  
  361. on DVFrameRate
  362.   global gSISystem, gSIVideo
  363.   set vRetVal to 0
  364.   if gSISystem = "MAC" then
  365.     if gSIVideo = "QT" then
  366.       set vRetVal to MAC_QT_FrameRate()
  367.     end if
  368.   else
  369.     if gSISystem = "WIN" then
  370.       if gSIVideo = "QT" then
  371.         set vRetVal to WIN_QT_FrameRate()
  372.       else
  373.         if gSIVideo = "VFW" then
  374.           set vRetVal to WIN_VFW_FrameRate()
  375.         else
  376.           if gSIVideo = "MPEG" then
  377.             set vRetVal to WIN_MPEG_FrameRate()
  378.           end if
  379.         end if
  380.       end if
  381.     end if
  382.   end if
  383.   return vRetVal
  384. end
  385.  
  386. on DVClose
  387.   global gSISystem, gSIVideo
  388.   if gSISystem = "MAC" then
  389.     if gSIVideo = "QT" then
  390.       MAC_QT_Close()
  391.     end if
  392.   else
  393.     if gSISystem = "WIN" then
  394.       if gSIVideo = "QT" then
  395.         WIN_QT_Close()
  396.       else
  397.         if gSIVideo = "VFW" then
  398.           WIN_VFW_Close()
  399.         else
  400.           if gSIVideo = "MPEG" then
  401.             WIN_MPEG_Close()
  402.           end if
  403.         end if
  404.       end if
  405.     end if
  406.   end if
  407. end
  408.  
  409. on DVIdle
  410.   global gSISystem, gSIVideo
  411.   if gSISystem = "MAC" then
  412.     if gSIVideo = "QT" then
  413.       MAC_QT_Idle()
  414.     end if
  415.   else
  416.     if gSISystem = "WIN" then
  417.       if gSIVideo = "QT" then
  418.         WIN_QT_Idle()
  419.       else
  420.         if gSIVideo = "VFW" then
  421.           WIN_VFW_Idle()
  422.         else
  423.           if gSIVideo = "MPEG" then
  424.             WIN_MPEG_Idle()
  425.           end if
  426.         end if
  427.       end if
  428.     end if
  429.   end if
  430. end
  431.  
  432. on DVShow
  433.   global gSISystem, gSIVideo
  434.   if gSISystem = "MAC" then
  435.     if gSIVideo = "QT" then
  436.       MAC_QT_Show()
  437.     end if
  438.   else
  439.     if gSISystem = "WIN" then
  440.       if gSIVideo = "QT" then
  441.         WIN_QT_Show()
  442.       else
  443.         if gSIVideo = "VFW" then
  444.           WIN_VFW_Show()
  445.         else
  446.           if gSIVideo = "MPEG" then
  447.             WIN_MPEG_Show()
  448.           end if
  449.         end if
  450.       end if
  451.     end if
  452.   end if
  453. end
  454.  
  455. on DVHide
  456.   global gSISystem, gSIVideo
  457.   if gSISystem = "MAC" then
  458.     if gSIVideo = "QT" then
  459.       MAC_QT_Hide()
  460.     end if
  461.   else
  462.     if gSISystem = "WIN" then
  463.       if gSIVideo = "QT" then
  464.         WIN_QT_Hide()
  465.       else
  466.         if gSIVideo = "VFW" then
  467.           WIN_VFW_Hide()
  468.         else
  469.           if gSIVideo = "MPEG" then
  470.             WIN_MPEG_Hide()
  471.           end if
  472.         end if
  473.       end if
  474.     end if
  475.   end if
  476. end
  477.